package com.tdd;

import java.math.BigDecimal;

import org.junit.Before;

public class BinaryOperatorsTest {
	HpStack stack;

	@Before
	public void init() {
		stack = new HpStack();
		stack.push(new BigDecimal(42));
		stack.push(new BigDecimal(10));
	}

}
